home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / paint.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-09-12  |  687 b   |  28 lines

  1. /*
  2.   ImageMagick Image Paint Methods.
  3. */
  4. #ifndef _MAGICK_PAINT_H
  5. #define _MAGICK_PAINT_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. #include "magick/draw.h"
  12.  
  13. extern MagickExport unsigned int
  14.   ColorFloodfillImage(Image *,const DrawInfo *,const PixelPacket,const long,
  15.     const long,const PaintMethod),
  16.   MatteFloodfillImage(Image *,const PixelPacket,const Quantum,const long,
  17.     const long,const PaintMethod);
  18.  
  19. extern MagickExport unsigned int
  20.   OpaqueImage(Image *,const PixelPacket,const PixelPacket),
  21.   TransparentImage(Image *,const PixelPacket,const Quantum);
  22.  
  23. #if defined(__cplusplus) || defined(c_plusplus)
  24. }
  25. #endif
  26.  
  27. #endif
  28.